home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / picture / simpict.h < prev    next >
Text File  |  1993-09-23  |  609b  |  34 lines

  1. //    Copyright 1993 Ralph Gonzalez
  2.  
  3. /*
  4. *    FILE:        simpict.h
  5. *    AUTHOR:        R. Gonzalez
  6. *    CREATED:    October 6, 1990
  7. *
  8. *    Defines simple pict application class.
  9. */
  10.  
  11. # ifndef    simpict_h
  12. # define    simpict_h
  13.  
  14. # include    "pict.h"
  15. # include    "coord.h"
  16.  
  17. /******************************************************************
  18. *   simple pict application
  19. ******************************************************************/
  20. class    Simple_Pict:public Generic_Pict
  21. {
  22. private:
  23.     Projector        *projector1,
  24.                     *projector2;
  25.     Coord2            *c1,
  26.                     *c2;
  27.  
  28. public:
  29.     Simple_Pict(void);
  30.     virtual void    run(void);
  31.     virtual            ~Simple_Pict(void);
  32. };
  33.  
  34. # endif